type github.com/golang/protobuf/proto.textParser

16 uses

	github.com/golang/protobuf/proto (current package)
		text_decode.go#L67: type textParser struct {
		text_decode.go#L83: func newTextParser(s string) *textParser {
		text_decode.go#L84: 	p := new(textParser)
		text_decode.go#L91: func (p *textParser) unmarshalMessage(m protoreflect.Message, terminator string) (err error) {
		text_decode.go#L171: func (p *textParser) unmarshalExtensionOrAny(m protoreflect.Message, seen map[protoreflect.FieldNumber]bool) error {
		text_decode.go#L258: func (p *textParser) unmarshalValue(v protoreflect.Value, fd protoreflect.FieldDescriptor) (protoreflect.Value, error) {
		text_decode.go#L368: func (p *textParser) unmarshalSingularValue(v protoreflect.Value, fd protoreflect.FieldDescriptor) (protoreflect.Value, error) {
		text_decode.go#L475: func (p *textParser) checkForColon(fd protoreflect.FieldDescriptor) *ParseError {
		text_decode.go#L491: func (p *textParser) consumeExtensionOrAnyName() (string, error) {
		text_decode.go#L523: func (p *textParser) consumeOptionalSeparator() error {
		text_decode.go#L534: func (p *textParser) errorf(format string, a ...interface{}) *ParseError {
		text_decode.go#L541: func (p *textParser) skipWhitespace() {
		text_decode.go#L565: func (p *textParser) advance() {
		text_decode.go#L617: func (p *textParser) back() { p.backed = true }
		text_decode.go#L620: func (p *textParser) next() *token {
		text_decode.go#L650: func (p *textParser) consumeToken(s string) error {